home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / APXDLG.PAK / APXDLGDC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  903 b   |  31 lines

  1. //----------------------------------------------------------------------------
  2. //  Project ApxDlg
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    ApxDlg Application
  7. //  FILE:         apxdlgdc.h
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TApxDlgDlgClient (TDialog).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(apxdlgdc_h)              // Sentry, use file only if it's not already included.
  16. #define apxdlgdc_h
  17.  
  18. #include "apxdlgap.rh"                  // Definition of all resources.
  19.  
  20.  
  21. //{{TDialog = TApxDlgDlgClient}}
  22. class TApxDlgDlgClient : public TDialog {
  23.   public:
  24.     TApxDlgDlgClient(TWindow* parent, TResId resId = IDD_CLIENT, TModule* module = 0);
  25.     virtual ~TApxDlgDlgClient();
  26.  
  27. };    //{{TApxDlgDlgClient}}
  28.  
  29.  
  30. #endif  // apxdlgdc_h sentry.
  31.